home *** CD-ROM | disk | FTP | other *** search
/ Champak Vol C-14 / Vol C-14.iso / games / memoria.swf / scripts / frame_2 / DoAction.as
Text File  |  2012-04-23  |  802b  |  29 lines

  1. trycount = "0";
  2. GameCount = "0";
  3. CountX = "0";
  4. CountY = "0";
  5. Shuffle = "1122334455667788";
  6. while(CountX < "4")
  7. {
  8.    while(CountY < "4")
  9.    {
  10.       CurrentCount = CountX * "4" + CountY + "1";
  11.       duplicateMovieClip("/Card0","Card" add CurrentCount,CurrentCount + 16384);
  12.       setProperty("/Card" add CurrentCount, _X, CountX * "80" + "115");
  13.       setProperty("/Card" add CurrentCount, _Y, CountY * "80" + "80");
  14.       call("GetCard");
  15.       tellTarget("/Card" add CurrentCount)
  16.       {
  17.          MyCard = eval("/:NewCard");
  18.       }
  19.       trace(CountY add "  " add CountX add " " add CurrentCount);
  20.       CountY += "1";
  21.       trace("Card " add CurrentCount add " is number " add MyCard);
  22.    }
  23.    CountY = "0";
  24.    CountX += "1";
  25. }
  26. ClickCount = "0";
  27. FirstClick = "";
  28. stop();
  29.